Skip to main content
Version: 1.0.2

Request For Return Outbound

The ReturnRequest API enables to request for returning the outbound transaction payment.

Method: POST

{{URL}}/rtp/rpc/TransactionService/ReturnRequest

Headers

NameValue
Content-Typeapplication/json
Credential"Basic c3VwcG9ydCsxQG5ldHN5cy1pbmMuY29tOjM5ZDYxOGJkNTVmN5NWQxY2RlNDE5"
Signature"{{signature}}"

Example

Payload Parameters
ParameterDescription

referenceNumber

Mandatory

String

Reference number of the original transaction

Example – "M202311099876665149078836456"

processor

Mandatory

String

Payment channel through which the transaction happens

Example – "TCH" or "FedNow"

caseId

Mandatory

(Applicable only for FedNow)

String

Case ID that comes in inbound request

Example – "RRCASEQA202308160000000002"

_caseId

Mandatory

(Applicable only for TCH)

String

Case ID that comes in inbound request

Example – "CASE91000072"

reason

Mandatory

Object

code

Mandatory

String

Reason code for return request

Example – "AC03"

additionalInfo

Mandatory

String

Additional information for return request

Example – "Test Information"

returnRequestDetails

Optional

(Applicable only for FedNow)

Object

email

Optional

String

Email of the user who handles this request

Example – "ramesh@test.com"

name

Optional

String

Name of the user who handles this request

Example – "Ramesh P"

phoneNo

Optional

String

Contact phone number of the user who handles this request

Example – "+19-856475852"

prefMethod

Optional

String

Preferable contact option code

Example – "PHON"


curl --location '{{URL}}/rtp/rpc/TransactionService/ReturnRequest' \
--header 'Content-Type: application/json' \
--data '{"referenceNumber":"M202311099876665149078836456","processor":"TCH","_caseId":"CASE91000072","reason":{"code":"AC03","additionalInfo":"Test Information"}}'

Request Body (Applicable for both FedNow and TCH)


{
"referenceNumber": "M202311099876665149078836456",
"processor": "TCH",
"caseId": "RRCASEQA202308160000000002", //applicable only for FedNow
"_caseId": "CASE91000072", //applicable only for TCH
"reason": {
"code": "AC03",
"additionalInfo": "Test Information"
}
"returnRequestDetails": { //applicable only for FedNow
"email": "ramesh@test.com",
"name": "Ramesh P",
"phoneNo": "+19-856475852",
"prefMethod": "PHON"
}
}

Response: 200

Response Parameters
ParameterDescription

response

String

Response received for the given request

Example – "JSON Representation of Received Response"

message

String

Notification message for the request

Example – "request submitted successfully"

rawMessage

String

Raw response message related to the transaction encoded in Base64

Example – "Base64 Value of Received Response"

status

String

Status of the response

Example – "RCVD"

caseId

(Applicable only for TCH)

String

Response Case ID of the request

Example – "M20240328026013673T1BT3021616703611"

Response Body (Applicable for both FedNow and TCH)


{
"response": "JSON Representation of Received Response",
"message": "request submitted successfully",
"rawMessage": "Base64 Value of Received Response",
"status": "RCVD",
"caseId": "M20240328026013673T1BT3021616703611" //applicable only for TCH
}